Conversation
WalkthroughThis PR introduces AI prompt integration functionality, enabling AI-assisted guide page setup. It includes documentation for creating prompts, a new Nuxt framework prompt, schema updates supporting Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes 🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
🍈 Lychee Link Check Report3664 links: ✅ All links are working!Full Statistics Table
|
There was a problem hiding this comment.
Actionable comments posted: 2
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@apps/docs/PROMPT_GUIDE.md`:
- Around line 83-163: The Markdown fenced code block starting with the example
prompt template (the block beginning "# Bootstrap {Framework} app with Prisma
Postgres (Prisma v7)") is missing a language tag; update its opening fence from
``` to ```text to satisfy MD040 and improve syntax highlighting in
editors—ensure you only change the opening fence for that specific block in
PROMPT_GUIDE.md and keep the block contents unchanged.
In `@apps/docs/src/lib/get-prompt-content.ts`:
- Around line 11-13: The regex that extracts the fenced ```md block from the
`processed` string in `get-prompt-content` is currently brittle to CRLFs; update
the `processed.match(...)` call that computes `match` so the fence patterns
accept optional carriage returns (use `\r?\n` for both the opening and closing
fence line breaks) so it will match blocks with either `\n` or `\r\n` line
endings.
ℹ️ Review info
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (8)
apps/docs/PROMPT_GUIDE.mdapps/docs/content/docs/ai/prompts/nuxt.mdxapps/docs/content/docs/guides/frameworks/nextjs.mdxapps/docs/content/docs/guides/frameworks/nuxt.mdxapps/docs/source.config.tsapps/docs/src/app/(docs)/(default)/[[...slug]]/page.tsxapps/docs/src/components/ai-prompt-banner.tsxapps/docs/src/lib/get-prompt-content.ts
Summary by CodeRabbit
New Features
Documentation